Jim Blandy [Tue, 4 May 1993 02:32:22 +0000 (02:32 +0000)]
Implement extra_keyboard_modifiers properly.
* keyboard.c (syms_of_keyboard): Doc fix for
extra-keyboard-modifiers; use the same modifier bits as we do for
characters.
(read_char): Apply all the modifiers in extra_keyboard_modifiers
to the input characters, so you can get hyper, super, and the rest
of the gang.
* xterm.c (x_emacs_to_x_modifiers): New function.
(x_convert_modifiers): Renamed to x_x_to_emacs_modifiers, for
consistency. Callers changed.
(XTread_socket): Apply x_emacs_to_x_modifiers to
extra_keyboard_modifiers before setting the state member of the
event; this will get all the modifiers on ASCII characters.
* keyboard.c (kbd_buffer_get_event): Don't generate switch-frame
events if they'd only switch to the frame already selected. This
avoids lots of extra switch-frame events when using a separate
minibuffer.
* keyboard.c (Fcurrent_input_mode): New function.
* keyboard.c (read_key_sequence): Let the `modifiers' variable in
the code which deals with KEY being unbound be an int, not a
Lisp_Object.
Make the modifier manipulation functions more robust. The old way
caused a bug once, and probably would again.
* termhooks.h (alt_modifier, super_modifier, hyper_modifier,
shift_modifier, ctrl_modifier, meta_modifier): Shift these all
down one bit in value, to avoid sign extension problems.
* lisp.h (CHAR_META, CHAR_CTL, CHAR_SHIFT): Fix these definitions too.
* keyboard.c (lispy_modifier_list): Ignore modifier bits beyond
what our table of modifier names can handle.
(apply_modifiers): Don't abort if you see extra modifier bits,
just remove them.
Jim Blandy [Tue, 4 May 1993 02:29:57 +0000 (02:29 +0000)]
* fileio.c (Fmake_symbolic_link): If a file already exists under
the link's filename, delete the file which the link
would replace, not the file the link would point at.
Jim Blandy [Tue, 4 May 1993 02:29:06 +0000 (02:29 +0000)]
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
':' elsewhere, just have it default to ':' if not #defined, and
#define it to be ',' in s/vms.h; OS/2 will need it to be ';'.
* s/vms.h (SEPCHAR): #define this to be ','.
* s/template.h (SEPCHAR): Mention this.
Changes for Emacs 19 from Thorsten Ohl <ohl@chico.harvard.edu>:
* s/mach2.h: copied from the Emacs 18.59 distribution.
Don't define NO_REMAP, define START_FILES as
`pre-crt0.o' instead. Define LIB_MATH as `-lm', to override the
default `-lm -lc' (there is no libc on the NeXT).
* ymakefile (STARTFILES): Allow config.h to set this value even if
ORDINARY_LINK is defined.
* unexnext.c: Fix subdirectories for the machine dependent include
files for NeXTStep 3.0; #include <mach/mach.h> and
<mach-o/loader.h> instead of <mach.h> and <sys/loader.h>.
(getsectbyname): Remove prototype for this; the system #include
files take care of that.
(malloc_cookie): New variable.
(unexec_doit): Set malloc_cookie to the result returned by
malloc_freezedry.
* emacs.c (main): Declare malloc_cookie to be extern, so that we can
get the value set when we dumped and pass it to malloc_jumpstart.
* systime.h: The NeXT has a timezone function.
Jim Blandy [Tue, 4 May 1993 02:28:10 +0000 (02:28 +0000)]
* systime.h: Doc fix.
(EMACS_SET_USECS): Remember that a `usec' is a microsecond, not a
millisecond. What's three orders of magnitude between friends?
* dispnew.c (Fsit_for, Fsleep_for): Remember to multiply the
`milliseconds' argument by 1000 to get microseconds.
* dispnew.c (Fsleep_for, Fsit_for): Allow SECONDS to be a
floating point value.
* dispnew.c (getenv): Extern declaration deleted; this is done in
config.h.
Jim Blandy [Tue, 4 May 1993 02:26:53 +0000 (02:26 +0000)]
* data.c (Ffset): Refuse to set the function value of t or nil.
Jim Blandy [Tue, 4 May 1993 02:24:42 +0000 (02:24 +0000)]
* config.h.in (getenv): Don't test THIS_IS_YMAKEFILE to see if we
should exclude the getenv declaration; instead, test NOT_C_CODE.
Per suggestion from Francesco Potorti`.
* ymakefile (NOT_C_CODE): Define this; it's true, and useful.
* config.h.in (volatile): Don't define this to be the empty string
if some file has #defined HAVE_VOLATILE.
Jim Blandy [Tue, 4 May 1993 02:23:12 +0000 (02:23 +0000)]
* buffer.c (syms_of_buffer): Doc fix for buffer-display-table.
* buffer.c (Fmake_overlay, Fmove_overlay): New optional BUFFER
arguments.
(recenter_overlay_lists): New argument BUF, to use instead of the
current buffer.
(Foverlay_recenter): Pass the appropriate arguments to
recenter_overlay_lists.
* buffer.c (Fdelete_overlay): Don't assume that overlay is in the
current buffer. Don't forget to declare the argument a Lisp_Object.
Jim Blandy [Tue, 4 May 1993 00:28:07 +0000 (00:28 +0000)]
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
':' elsewhere, just have it default to ':' if not #defined, and
#define it to be ',' in s/vms.h; OS/2 will need it to be ';'.
* s/vms.h (SEPCHAR): #define this to be ','.
* s/template.h (SEPCHAR): Mention this.
* s/vms.h (xfree): #define this to emacs_xfree, to avoid case
conflict with XFree; on VMS, external symbols are case-insensitive.
Jim Blandy [Tue, 4 May 1993 00:27:23 +0000 (00:27 +0000)]
* m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/mips.h,
m/sps7.h, s/hpux.h, s/usg5-4.h (HAVE_DUP2): Removed; derived by
configure script.
* s/hpux.h, s/irix3-3.h, s/aix3-1.h (HAVE_GETHOSTNAME): Removed;
derived by configure script.
* s/usg5-4.h (HAVE_GETTIMEOFDAY): Deleted; ../configure figures
that out now.
Jim Blandy [Tue, 4 May 1993 00:26:43 +0000 (00:26 +0000)]
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
':' elsewhere, just have it default to ':' if not #defined, and
#define it to be ',' in s/vms.h; OS/2 will need it to be ';'.
* s/vms.h (SEPCHAR): #define this to be ','.
* s/template.h (SEPCHAR): Mention this.
Jim Blandy [Tue, 4 May 1993 00:26:07 +0000 (00:26 +0000)]
* m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/mips.h,
m/sps7.h, s/hpux.h, s/usg5-4.h (HAVE_DUP2): Removed; derived by
configure script.
* s/hpux.h, s/irix3-3.h, s/aix3-1.h (HAVE_GETHOSTNAME): Removed;
derived by configure script.
Jim Blandy [Mon, 3 May 1993 22:56:42 +0000 (22:56 +0000)]
* calendar.el: Update reference to the papers in S-P&E.
(calendar-print-astro-day-number): Correct spelling error in
message string.
Paul Eggert [Mon, 3 May 1993 17:55:22 +0000 (17:55 +0000)]
mawk, SunOS 4.1.3 nawk, and Ultrix/MKS nawk all barf on /[/]/, so change
it to /[\/]/. This should work on all Posix-compliant awks.
It's slightly wrong with traditional (Unix version 7) awk, since it
also allows \, but that's a minor problem compared to awk syntax errors.
Richard M. Stallman [Mon, 3 May 1993 15:34:46 +0000 (15:34 +0000)]
(help-for-help): Use lower case letters for help options.
Richard M. Stallman [Mon, 3 May 1993 15:01:18 +0000 (15:01 +0000)]
(string-rectangle): Renamed from fill-rectangle.
(string-rectangle-line): Renamed from fill-rectangle-line.
Jim Blandy [Mon, 3 May 1993 04:05:33 +0000 (04:05 +0000)]
* sun-mouse.el (suspend-emacstool): Run suspend-hook, not
suspend-hooks.
Jim Blandy [Mon, 3 May 1993 03:41:07 +0000 (03:41 +0000)]
* yow.el (yow): Fix interactive spec.
Jim Blandy [Mon, 3 May 1993 03:40:40 +0000 (03:40 +0000)]
* subr.el (listify-key-sequence): Use a character constant to
decide which bits to flip, not an integer constant.
Jim Blandy [Mon, 3 May 1993 03:40:10 +0000 (03:40 +0000)]
* sendmail.el (mail-setup): Don't insert "--\n" before the
signature. If they want it, they can put it in their .signature
file.
Jim Blandy [Mon, 3 May 1993 03:38:36 +0000 (03:38 +0000)]
* mouse.el (mouse-buffer-menu): Don't right-justify the buffer
name; this doesn't look nice if we use a proportional font.
Jim Blandy [Mon, 3 May 1993 03:37:47 +0000 (03:37 +0000)]
* lucid.el: Comment out fset of set-screen-width properly.
* lucid.el: (provide 'lucid).
* lucid.el: (switch-to-other-buffer): Avoid buffers whose names
start with a space.
Jim Blandy [Mon, 3 May 1993 03:37:22 +0000 (03:37 +0000)]
* files.el (insert-directory): Undo change of March 23;
dereferencing links is inappropriate for dired.
* files.el (abbreviate-file-name): If abbreviated-home-dir ends
with a slash, don't remove the corresponding slash from filename
when we collapse the home directory to ~.
Jim Blandy [Mon, 3 May 1993 03:36:19 +0000 (03:36 +0000)]
* edebug.el (edebug-display): Call the `mark' function with the
FORCE argument non-nil, so that we don't get an error if the mark
isn't set yet.
* edebug.el (global-edebug-prefix, global-edebug-map): Add
autoload cookies for these, so they are present when Emacs starts
up.
* edebug.el (global-edebug-map): Bind `C-x X d' to edebug-defun in
this map; we can't bind it to `C-x x', as the installation
instructions suggest, because that conflicts with
copy-to-register.
Jim Blandy [Mon, 3 May 1993 03:35:53 +0000 (03:35 +0000)]
* disp-table.el (describe-display-table): Don't use the term
"rope"; we're using vectors of characters now.
(standard-display-8bit, standard-display-ascii): Set the element
of the display table to a vector, not an integer; the latter
doesn't mean anything.
Jim Blandy [Mon, 3 May 1993 03:35:01 +0000 (03:35 +0000)]
* comint.el (comint-match-partial-pathname): Move "---" range in
character class in regular expressions to the end of the character
class; this way, it meets the POSIX regexp specs.
Jim Blandy [Mon, 3 May 1993 03:34:20 +0000 (03:34 +0000)]
* bytecomp.el (meta-flag): Declare this an obsolete variable.
* bytecomp.el: The `suspend-hooks' variable is obsolete now, and
`suspend-hook' is the right name.
Jim Blandy [Mon, 3 May 1993 02:08:07 +0000 (02:08 +0000)]
* make-dist: Distribute configure, as well as configure.in.
Oversight.
* make-dist: Distribute configure.in, instead of configure.
Jim Blandy [Mon, 3 May 1993 02:07:41 +0000 (02:07 +0000)]
* configure.in: Use the AC_PROG_CPP macro, and then use the CPP
variable to scan the machine and system description files.
* configure.in: Use the AC_HAVE_HEADERS to check for sys/timeb.h,
so that getdate.y builds correctly.
* configure.in (tempcname): Change this to "conftest.c", so it will
work properly on systems with short filenames; this is the name
autoconf uses.
* configure.in: Also detect the availability of dup2 and
gethostname.
* configure.in: Use the AC_ALLOCA test.
* Makefile.in (ALLOCA): New variable, to be set by ./configure.
(lib-src/Makefile): Edit the value of ALLOCA into lib-src/Makefile.
* Makefile.in: Add autoconf cookies so that the configure
script can comment out sections of path variable definitions to
choose between the installable configuration and the run-in-place
configuration.
* configure.in: Add new option `--run-in-place', to select the
run-in-place path definitions.
* configure.in: Add a clause to the big configuration name case
for the NeXT machine.
Jim Blandy [Mon, 3 May 1993 02:06:16 +0000 (02:06 +0000)]
* configure.in: Use the AC_ALLOCA test.
* Makefile.in (ALLOCA): New variable, to be set by ./configure.
(lib-src/Makefile): Edit the value of ALLOCA into lib-src/Makefile.
* Makefile.in (install): Print out the name of the directory we're
copying, so people can have some idea of whether we're making
progress.
* Makefile.in (install.aix, install.xenix, install.sysv, install):
Don't forget to re-create the COPYDESTS directories after we clear
them out.
* Makefile.in: Add autoconf cookies so that the configure
script can comment out sections of path variable definitions to
choose between the installable configuration and the run-in-place
configuration.
* configure.in: Add new option `--run-in-place', to select the
run-in-place path definitions.
* Makefile.in (install, install.sysv, install.xenix, install.aix):
Make sure that each source directory exists, and is different from
the destination directory; then, delete the destination before
copying over the source.
Richard M. Stallman [Sun, 2 May 1993 12:46:26 +0000 (12:46 +0000)]
(find-file-noselect): On VMS, maybe set buffer-file-name
to the truename. Depends on find-file-not-true-dirname-list
Jim Blandy [Sat, 1 May 1993 21:53:52 +0000 (21:53 +0000)]
Initial revision
Richard M. Stallman [Sat, 1 May 1993 15:00:34 +0000 (15:00 +0000)]
(vc-mode-line): Don't alter key bindings.
(vc-toggle-read-only): Put on C-x C-q unconditionally.
(vc-mode): Add permanent-local property.
Richard M. Stallman [Sat, 1 May 1993 14:39:32 +0000 (14:39 +0000)]
Changed.
Richard M. Stallman [Sat, 1 May 1993 13:20:55 +0000 (13:20 +0000)]
(Fsuspend_emacs): Doc fix.
Richard M. Stallman [Sat, 1 May 1993 03:09:16 +0000 (03:09 +0000)]
(vc-revert-buffer1): Fix format of compilation-error-list.
Doug Evans [Fri, 30 Apr 1993 18:52:42 +0000 (18:52 +0000)]
Fix syntax error.
Jim Blandy [Fri, 30 Apr 1993 16:42:24 +0000 (16:42 +0000)]
*** empty log message ***
Steve Chamberlain [Fri, 30 Apr 1993 14:49:35 +0000 (14:49 +0000)]
Accept sh, hms.
Richard M. Stallman [Fri, 30 Apr 1993 11:54:04 +0000 (11:54 +0000)]
(find-file-noselect): Do set buffer-file-name
to the truename, when find-file-visit-truename.
(file-truename): Redo esr's change.
Richard M. Stallman [Thu, 29 Apr 1993 17:58:37 +0000 (17:58 +0000)]
(vc-match-substring): Renamed from match-substring.
(vc-parse-buffer): Use new name.
Richard M. Stallman [Thu, 29 Apr 1993 16:49:24 +0000 (16:49 +0000)]
(Fthis_command_keys): Doc fix.
Richard M. Stallman [Thu, 29 Apr 1993 15:57:17 +0000 (15:57 +0000)]
(wait_reading_process_input): Move the status_notify
call before the set_waiting_for_input call.
Richard M. Stallman [Thu, 29 Apr 1993 14:23:22 +0000 (14:23 +0000)]
(shell-prompt-pattern): Undo last change.
Richard M. Stallman [Thu, 29 Apr 1993 13:57:52 +0000 (13:57 +0000)]
(up-arrow, down-arrow, left-arrow, right-arrow): Deleted.
(kill-line, next-line-add-newlines): Doc fix.
(kill-whole-line): Doc fix.
(kill-forward-chars, kill-forward-chars): Reinsert as before.
Change defalias to define-function.
Richard M. Stallman [Thu, 29 Apr 1993 13:17:56 +0000 (13:17 +0000)]
(Fexpand_file_name): Undo last change--too risky for now.
Richard M. Stallman [Thu, 29 Apr 1993 13:12:37 +0000 (13:12 +0000)]
(Fdefine_function): New function (same code as Fdefalias).
Richard M. Stallman [Thu, 29 Apr 1993 02:22:48 +0000 (02:22 +0000)]
(LOADHIST_ATTACH): New macro.
(Vcurrent_load_list, Vload_history): Vars declared.
Roland McGrath [Wed, 28 Apr 1993 22:48:52 +0000 (22:48 +0000)]
(vc-revert-buffer1): Ignore non-marker elts of compilation-error-list.
Roland McGrath [Wed, 28 Apr 1993 22:44:29 +0000 (22:44 +0000)]
Add compilation-minor-mode to minor-mode-alist and minor-mode-map-alist.
(compilation-minor-mode): New defvar.
(compilation-minor-mode-map): New defvar; keymap with the bindings
from compilation-mode-map except SPC and DEL.
(compilation-mode-map): Construct this keymap to inherit from
compilation-minor-mode-map.
(compilation-setup): New function, code broken out of compilation-mode.
(compilation-mode): Call it.
(compilation-minor-mode): New function to toggle
compilation-minor-mode; if setting it, call compilation-setup.
Eric S. Raymond [Wed, 28 Apr 1993 21:19:21 +0000 (21:19 +0000)]
Installed Aaron Larson's new bibtex.el. See the header comment for
details.
Roland McGrath [Wed, 28 Apr 1993 20:31:02 +0000 (20:31 +0000)]
(gnus-inews-organization): If ORGANIZATION is "", set it to nil.
Roland McGrath [Wed, 28 Apr 1993 17:33:42 +0000 (17:33 +0000)]
(file-truename): Undo last change.
Eric S. Raymond [Wed, 28 Apr 1993 17:08:18 +0000 (17:08 +0000)]
(do_autoload): Fixed the bug in the autoload-saving code.
Eric S. Raymond [Wed, 28 Apr 1993 17:08:14 +0000 (17:08 +0000)]
Removed spurious comment (obsoleted by ;;;###autoload).
Eric S. Raymond [Tue, 27 Apr 1993 22:01:32 +0000 (22:01 +0000)]
(hscroll-step): New variable.
(hscroll-point-visible): New function.
(left-arrow, right-arrow): These use hscroll-point-visible for better auto-
scrolling behavior.
Eric S. Raymond [Tue, 27 Apr 1993 21:59:59 +0000 (21:59 +0000)]
(un_autoload): Don't try to save old autoload forms when we load something
in. Something about the code now conditioned out by UNLOAD was screwing
up ordinary autoloads, notably of picture.el. When I figure out what, I'll
fix and re-enable this code.
Eric S. Raymond [Tue, 27 Apr 1993 21:59:55 +0000 (21:59 +0000)]
Completed the package entry point's name change from edit-picture to
picture-mode.
(move-to-column-force, picture-end-of-line): When movement is completed,
scroll horizontally if necessary to make point visible.
(picture-beginning-of-line): New function. Exists to force horizontal
scrolling if the buffer is wide.
(picture-mode-map): Instead of rebinding common keystrokes, use
substitute-key-definition to remap all keystrokes attached to the
corresponding commands.
Eric S. Raymond [Tue, 27 Apr 1993 21:59:46 +0000 (21:59 +0000)]
(gud-format-command): Fix %f expansuuin to send ondly the basename of
files to gdb.
Eric S. Raymond [Tue, 27 Apr 1993 21:59:41 +0000 (21:59 +0000)]
(file-truename): Do the right thing when /home/gp2/eric = "".
Eric S. Raymond [Tue, 27 Apr 1993 21:59:39 +0000 (21:59 +0000)]
(notify): Bug fix. Treat the body of this function as a critical region.
Roland McGrath [Mon, 26 Apr 1993 21:54:00 +0000 (21:54 +0000)]
(Fexpand_file_name): Don't remove trailing / from NEWDIR if just "/".
Roland McGrath [Mon, 26 Apr 1993 19:21:01 +0000 (19:21 +0000)]
(find-tag-interactive): New function to read args for find-tag et al.
(find-tag-noselect, find-tag, find-tag-other-window, find-tag-other-frame,
find-tag-regexp): Use it.
(find-tag, find-tag-other-window): Take new arg REGEXP-P, pass to
find-tag-noselect.
(find-tag-regexp): Call either find-tag-other-window or find-tag, rather
than find-tag-noselect and switch-to-buffer[-other-window].
(tags-location-stack): New defvar.
(find-tag-noselect): If NEXT-P is '-, pop location off tags-location-stack.
Eric S. Raymond [Mon, 26 Apr 1993 05:15:13 +0000 (05:15 +0000)]
(read_pending_input): Fix the garbaged-modifiers bug under System Vs previous
to r4.
Eric S. Raymond [Mon, 26 Apr 1993 05:15:08 +0000 (05:15 +0000)]
Doc fixes. Also a few teaks to pacify the byte-compiler.
Eric S. Raymond [Mon, 26 Apr 1993 05:15:04 +0000 (05:15 +0000)]
I started to clean this up and make it work under System V, until I hit a wall.
Discussion with Jim Blandy reveals that it can no longer be made to work
properly at all due to changes in Emacs's terminal-control interface. So
it's getting deep-sixed, but these cleanups go in on the outside chance that
we want to revive it someday.
Eric S. Raymond [Mon, 26 Apr 1993 05:15:01 +0000 (05:15 +0000)]
(global-map): Dyke out the last two event-to-function bindings. These belong
in loaddefs.el or the user's .emacs, not in a terminal support package. Also
do the right thing and transplant all suspend-emacs bindings to iconify-frame,
rather than just C-z.
Eric S. Raymond [Mon, 26 Apr 1993 05:01:41 +0000 (05:01 +0000)]
(cd): Handle leading "~" like an absolute filename.
Eric S. Raymond [Mon, 26 Apr 1993 04:19:48 +0000 (04:19 +0000)]
Changed fsets to defaliases.
Eric S. Raymond [Sun, 25 Apr 1993 22:26:51 +0000 (22:26 +0000)]
(comint-mod): Nuked. A call to ring-mod replaces it.
(comint-mem): Nuked. A call to member replaces it.
Eric S. Raymond [Sun, 25 Apr 1993 22:26:48 +0000 (22:26 +0000)]
Rewritten. A poor choice of representation made the old code excessively
complex. The new version is smaller and faster. The interface is
unchanged, except that ring-remove now accepts an optional numeric argument
specifying the element to remove.
Eric S. Raymond [Sun, 25 Apr 1993 22:26:45 +0000 (22:26 +0000)]
Set no-byte-compile local variable t to work around a byte-compiler bug.
(gud-def, global-map): Move C-x C-a commands to global map. Restore
original C-x SPC global binding.
Eric S. Raymond [Sun, 25 Apr 1993 22:26:40 +0000 (22:26 +0000)]
(vc-diff): Get proper error message when you run this with no prefix
arg on an empty buffer.
(vc-directory): Better directory format --- replace the user and group IDs
with locking-user (if any).
(vc-finish-logentry, vc-next-comment, vc-previous-comment): Replace
*VC-comment-buffer* with a ring vector.
Eric S. Raymond [Sun, 25 Apr 1993 06:15:18 +0000 (06:15 +0000)]
(Fset-window-buffer): Set horizontal-scrolling on a window to zero when
we connect it to a new buffer.
Eric S. Raymond [Sun, 25 Apr 1993 06:14:25 +0000 (06:14 +0000)]
(Qmode-line-format): Describe %l in the doc string.
Eric S. Raymond [Sun, 25 Apr 1993 06:14:13 +0000 (06:14 +0000)]
(down-arrow): New function. Uses next-line-add-newlines to suppress
addition of new lines at end of buffer.
(up-arrow): Alias of previous-line, added for consistency.
These changes complete terminal-type-independent support for arrow keys.
Eric S. Raymond [Sun, 25 Apr 1993 06:14:10 +0000 (06:14 +0000)]
(tex-compilation-parse-errors): Added. At the moment, this would have
to be applied manually. It's not worth trying to integrate this with
the rest of the mode more tightly until we decide whether and how
compile's interface is going to change away from a closed subsystem.
Eric S. Raymond [Sun, 25 Apr 1993 06:14:06 +0000 (06:14 +0000)]
(cd): Changed to use to resolve relative cd calls.
(cd-absolute): Added. This is actually the old cd code with a changed
doc string.
(parse-colon-path): Added. Path-to-string exploder --- may be useful elsewhere.
Eric S. Raymond [Sun, 25 Apr 1993 06:14:03 +0000 (06:14 +0000)]
Added and fixed documentation.
(ring-rotate): Nuked. It was (a) unused, and (b) totally broken (as in,
any attempt to use it died with a type error, and when I patched it to fix
that I found its algorithm was broken).
(ring-ref): Added doc string.
Noah Friedman [Sat, 24 Apr 1993 10:10:19 +0000 (10:10 +0000)]
*** empty log message ***
Eric S. Raymond [Fri, 23 Apr 1993 07:31:14 +0000 (07:31 +0000)]
Replaced all fsets with defaliases.
Eric S. Raymond [Fri, 23 Apr 1993 06:51:44 +0000 (06:51 +0000)]
All fsets changed to defaliases.
Eric S. Raymond [Fri, 23 Apr 1993 06:50:51 +0000 (06:50 +0000)]
Some fsets changed to defaliases.
Eric S. Raymond [Fri, 23 Apr 1993 06:50:48 +0000 (06:50 +0000)]
All fsets changed to defaliases.
EOT
ci -u dired.el <<EOF
Some fsets changed to defaliases.
Eric S. Raymond [Fri, 23 Apr 1993 06:50:37 +0000 (06:50 +0000)]
All fsets changed to defaliases.
(kill-forward-chars, kill-backward-chars): Deleted. These were
internal subroutines used by delete-char and delete-backward-char
before those functions were moved into the C kernel. Now nothing uses
them.
(kill-line): Added kill-whole-line variable. Defaults to nil; a
non-nil value causes a kill-line at the beginning of a line to kill
the newline as well as the line. I find it very convenient. Emulates
Unipress' &kill-lines-magic variable.
(next-line): Added next-line-add-newlines variable. If nil, next-line will not
insert newlines when invoked at the end of a buffer. This obviates three LCD
packages.
(left-arrow, right-arrow): New functions. These do backward-char and
forward-char first. If line truncation is on, they then scroll left or
right as necessary to make sure point is visible.
Eric S. Raymond [Fri, 23 Apr 1993 03:54:38 +0000 (03:54 +0000)]
Initial revision
Eric S. Raymond [Fri, 23 Apr 1993 03:43:33 +0000 (03:43 +0000)]
(define-function): Changed name back to defalisaases to get things in
a known-good state.
Eric S. Raymond [Fri, 23 Apr 1993 03:40:03 +0000 (03:40 +0000)]
(Fdefine_function): Changed name back to Fdefalias, so we get things
in a known-good state.
Eric S. Raymond [Fri, 23 Apr 1993 03:06:10 +0000 (03:06 +0000)]
(BUF_NARROWED, NARROWED): New macros to test whether a region
restriction has narrowed the buffer.
Eric S. Raymond [Fri, 23 Apr 1993 02:21:02 +0000 (02:21 +0000)]
(global-map): Remove function key bindings that duplicate stuff in
loaddefs.el.
Eric S. Raymond [Fri, 23 Apr 1993 02:20:59 +0000 (02:20 +0000)]
Commentary added.
(telnet): Doc fix.
(rsh): Added entry point for rsh to remote host, per suggestion by
Michael McNamara <mac@ardent.com>. No change to any other code.
Eric S. Raymond [Fri, 23 Apr 1993 02:20:55 +0000 (02:20 +0000)]
(Info-find-node, Info-insert-subfile): Do the right thing if info files have
been compressed or gzipped. This is saving me lots of disk space.
Roland McGrath [Thu, 22 Apr 1993 22:56:54 +0000 (22:56 +0000)]
(ange-ftp-binary-file-name-regexp): Match .z and .z-part-?? files.
Eric S. Raymond [Wed, 21 Apr 1993 03:47:05 +0000 (03:47 +0000)]
Rewritten and simplified, commentary added. It now will usually
detect when the makefile target or macro lists need to be rebuilt and do it
automatically; in particular, this means you no longer have to deal
with an annoying wait at find-time.
Roland McGrath [Mon, 19 Apr 1993 21:29:48 +0000 (21:29 +0000)]
(vc-revert-buffer1): Typo fix in last change.
Roland McGrath [Mon, 19 Apr 1993 21:26:07 +0000 (21:26 +0000)]
(shell-mode): isationization (doc fix).
Roland McGrath [Mon, 19 Apr 1993 21:19:44 +0000 (21:19 +0000)]
(shell-mode): Capitalize mode name.
Roland McGrath [Mon, 19 Apr 1993 21:19:10 +0000 (21:19 +0000)]
(vc-comment-to-change-log): Restored interactive spec. Why was it
removed? Why does the only log entry mentioning this function contain
no actual information?
Roland McGrath [Mon, 19 Apr 1993 21:13:47 +0000 (21:13 +0000)]
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath [Mon, 19 Apr 1993 20:36:23 +0000 (20:36 +0000)]
(find-file-noselect): Never set SAME-TRUENAME to a buffer whose
buffer-file-name is nil.
Roland McGrath [Mon, 19 Apr 1993 20:27:50 +0000 (20:27 +0000)]
(set-auto-mode): If the buffer begins with "#!", look for -*- in the first
two lines, not just the first one.